I can't detect a difference between these two. |
Re: canWrite(object) vs. canModify(object) In v4 of DOORS there was only Read/Write/Control; now there is Read/Create/Modify/Delete/Control. They would never get rid of a command that used to work in this case canWrite. 'Write' seems to be a bit-wise 'OR' of Create/Modify/Delete. Thus I suppose that 'canWrite(obj)' means 'canCreate(obj) or canModify(obj) or canDelete(obj)'. 'Change' seems to have the same meaning as 'Control'. Having said that, there is no particular reason to absolutely conclude that 'canWrite(mod)' has the same meaning as 'canWrite(obj)'; they could be different. -Louie |
Re: canWrite(object) vs. canModify(object) llandale - Wed Jun 03 15:50:41 EDT 2009 FYI, what I ended up doing (based on testing) is to make sure both perms returned true to confirm I had the needed access. Regards, Strathglass. |